int x; // Declare the variable x of type int
float y; // Declare the variable y of type float
boolean b; // Declare the variable b of type boolean
x = 50; // Assign the value 50 to x
y = 12.6; // Assign the value 12.6 to f
b = true; // Assign the value true to b
